home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-10-06 | 488 b | 19 lines | [TEXT/PJMM] |
- {Code for implementing glue routines for InterfacesUI. So far, you only need this if you need to}
- {make multi-compiler code (code that compiles in both Think Pascal 4.0.2 and CodeWarrior) that}
- {uses TESetClickLoop.}
-
- unit SetClikLoopGlue;
-
- interface
- type
- TEClickLoopUPP = ProcPtr;
- procedure TESetClickLoop (clikProc: TEClickLoopUPP; hTE: TEHandle);
-
- implementation
-
- procedure TESetClickLoop (clikProc: TEClickLoopUPP; hTE: TEHandle);
- begin
- SetClikLoop(clikProc, hTE);
- end;
-
- end.